home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 109 (1989-08-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 109 (1989-08-15)(Ossowski, Stefan)(DE)(PD).adf / Includes / Bibel.asm < prev    next >
Assembly Source File  |  1989-02-21  |  1KB  |  73 lines

  1. *LVOs definieren
  2. *---------------
  3.  
  4. _OpenLibrary=-552
  5. _CloseLibrary=-414
  6. _OpenScreen=-198
  7. _CloseScreen=-66
  8. _ScreenMove=-162
  9. _OpenWindow=-204
  10. _Move=-240
  11. _Text=-60
  12. _Opendevice=-444
  13. _Open=-30
  14. _Close=-36
  15. _Read=-42
  16. _Write=-48
  17. _PolyDraw=-336
  18. _Draw=-246
  19. _Flood=-330
  20. _SetFont=-66
  21. _SetSoftStyle=-90
  22. _SetAPen=-342
  23. _SetBPen=-348
  24. _OpenDiskFont=-30
  25. _MoveSprite=-426
  26. _Translate=-30
  27. _RectFill=-306
  28. _LAPixel=-318
  29. _Delay=-198
  30. _Input=-54
  31. _WaitForChar=-204
  32. _Wait=-318
  33. _GetMsg=-372
  34. _ReplyMsg=-378
  35. _AddFont=-480
  36. _SPAsin=-114
  37. _SPSin=-36
  38. _Forbid=-132
  39. _Permit=-138
  40. _ChangeSprite=-420
  41. _FreeSprite=-414
  42. _GetSprite=-408
  43. _MovSprite=-426_LoadRGB4=-192
  44. _SetRGB4=-288
  45. _SetTaskPri=-300
  46. _OwnBlitter=-456
  47. _DisownBlitter=-462
  48. _Execute=-222
  49.  
  50. *Macros definieren
  51. *-----------------
  52.  
  53. CALLGRAF: macro %\nam       move.l  Gfxbase(pc),a6
  54.        jsr     \nam(a6)
  55.        endm
  56.  
  57. CALLEXEC: macro %\nam       move.l  4,a6
  58.        jsr     \nam(a6)
  59.        endm
  60.  
  61. CALLINT: macro %\nam       move.l  Intbase(pc),a6
  62.        jsr     \nam(a6)
  63.        endm
  64.  
  65. CALLDOS: macro %\nam
  66.        move.l  Dosbase(pc),a6
  67.        jsr     \nam(a6)
  68.        endm
  69.  
  70. ****************************************************************************
  71.  
  72.  
  73.